home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- // Borland C++Builder
- // Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
- //---------------------------------------------------------------------------
- // splash.h
- //
- // VCL Class Browser
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #ifndef splashH
- #define splashH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\ExtCtrls.hpp>
- //---------------------------------------------------------------------------
- class TSplashScreen : public TForm
- {
- __published: // IDE-managed Components
- TPanel *Panel1;
- TImage *Image1;
- private: // User declarations
- public: // User declarations
- virtual __fastcall TSplashScreen(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TSplashScreen *SplashScreen;
- //---------------------------------------------------------------------------
- #endif
-